    /*  @import url('https://fonts.googleapis.com/css2?family=Pretendard:wght@300;400;600;800&display=swap');
    
    .font-pretendard { font-family: 'Pretendard', sans-serif; }  */

    .bg-studio {
        background-color: #fdfaf5;
        background-image: radial-gradient(#e5e7eb 0.5px, transparent 0.5px);
        background-size: 24px 24px;
    }

    .main-circle {
        position: relative;
        z-index: 10;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-circle:hover { transform: scale(1.02); }

    .point-card { transition: all 0.3s ease; }
    .point-card:hover { transform: translateY(-5px); }

    @keyframes slow-rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .rotate-slow { animation: slow-rotate 20s linear infinite; }

    .curriculum-step {
        border-left: 4px solid #f97316;
    }